home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / wildcat / wcolor.zip / WA.BAT next >
DOS Batch File  |  1992-06-01  |  312b  |  14 lines

  1. @echo off
  2. if "%1" == "" goto ERROR
  3.  
  4. wcolor -ia%1 -d%2
  5. if errorlevel 0 goto EXIT
  6.  
  7. :ERROR
  8. echo .
  9. echo Batch format is "wa file [speed]"  eg.  "wa mainh.scr 2400".
  10. echo This example will display "mainh.scr" at roughly 2400 baud.  Leaving "speed"
  11. echo blank is equivalent to entering "0".
  12. echo .
  13.  
  14. :EXIT